RDMA/hns: Bugfix for the scene without receiver queue
authorLijun Ou <oulijun@huawei.com>
Wed, 12 Dec 2018 09:49:07 +0000 (17:49 +0800)
committerSalvatore Bonaccorso <carnil@debian.org>
Thu, 18 Jul 2019 22:23:17 +0000 (23:23 +0100)
In some application scenario, the user could not have receive queue when
run rdma write or read operation.

Signed-off-by: Lijun Ou <oulijun@huawei.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Gbp-Pq: Topic bugfix/arm64/huawei-taishan
Gbp-Pq: Name 0028-RDMA-hns-Bugfix-for-the-scene-without-receiver-queue.patch

drivers/infiniband/hw/hns/hns_roce_qp.c

index efb7e961ca6510eabaf73711b29bd0c4f37defbe..de1676e258282fd6a1411c0325d333484be46afe 100644 (file)
@@ -503,7 +503,8 @@ static int hns_roce_qp_has_sq(struct ib_qp_init_attr *attr)
 static int hns_roce_qp_has_rq(struct ib_qp_init_attr *attr)
 {
        if (attr->qp_type == IB_QPT_XRC_INI ||
-           attr->qp_type == IB_QPT_XRC_TGT || attr->srq)
+           attr->qp_type == IB_QPT_XRC_TGT || attr->srq ||
+           !attr->cap.max_recv_wr)
                return 0;
 
        return 1;